loop counter造句
例句与造句
- Specifies an increment value for a loop counter
为循环计数器指定一个增量值。 - An optional initialization expression that assigns values to the loop counters
为循环计数器赋值的可选初始化表达式。 - An optional iteration expression that increments or decrements the loop counter
递增或递减循环计数器的可选迭代表达式。 - The outer loop decrements a loop counter variable each time through the loop
每循环一次,外部循环都使循环计数器变量递减一次。 - Separates the beginning and ending values of a loop counter or of a value match range
分隔循环计数器或值匹配范围的起始值和结束值。 - It's difficult to find loop counter in a sentence. 用loop counter造句挺难的
- Expression statement or statements to increment or decrement the loop counters . statement
用于递增或递减循环计数器的一条或多条表达式语句。 - This register contains a loop counter that is decremented on certain branch operations
这个寄存器中存放了一个循环计数器,会随特定转移操作而递减。 - A comma - separated list of expressions or assignment statements to initialize the loop counters . expression
用于初始化循环计数器的表达式或赋值语句的逗号分隔列表。 - Loop , the order in which the fields of the object are assigned to the loop counter variable are not necessarily predictable or controllable
循环逐个通过对象的属性时,将对象字段赋给循环计数器变量的顺序不一定能预测或控制。 - Of course , you can run loops backward instead of forward , or increment the loop counter by something other than 1 , or even eliminate the loop counter completely as you do in a
当然,也可以反向而不是正向运行循环,或者使用1之外的循环计数器增量,甚至像 - The loop that does the reverse comparisons must have a loop counter and this loop counter produces the descending shift value that can be used to perform the bad character shift
进行逆序比较的循环必须有一个计数器,这个计数器产生用于“不匹配字符”的移动的递减的位移值。 - The for has an initialization section shockingly , usually used for initializing variables , an iteration section usually a loop counter gets incremented here , and a test section used to test whether the loop should keep being executed or not
For ( )有一个初始化区(令人惊讶的是,初始化区常用于初始化变量) 、一个迭代区(通常在这里递增循环计数器)和一个测试区(用于测试是否应该继续执行循环) 。